home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1938 / ALTSCRN.BAT < prev    next >
DOS Batch File  |  1992-09-24  |  3KB  |  52 lines

  1. @echo off
  2. echo 
  3. cls
  4. echo  ╔════════════════════════════════════════════════════════════════════════════╗
  5. echo  ║ This batch file will create a new copy of the screen-image file used by    ║
  6. echo  ║ GAMES.BAT (GAMES.SCR).                                                     ║
  7. echo  ║                                                                            ║
  8. echo  ║ This batch file is included so you can edit the screen in this batch file  ║
  9. echo  ║ (adding other games), execute the batch file (to create the new screen     ║
  10. echo  ║ image file) and then edit GAMES.BAT (to include your changes there).       ║
  11. echo  ╠════════════════════════════════════════════════════════════════════════════╣
  12. echo  ║ Please address any comments to:                                            ║
  13. echo  ║                                                                            ║
  14. echo  ║    SPETER SOFTWARE                                                         ║
  15. echo  ║    PO BOX 643                                                              ║
  16. echo  ║    LANE COVE                                                               ║
  17. echo  ║    N.S.W.   2066                                                           ║
  18. echo  ║    AUSTRALIA                                                               ║
  19. echo  ╠════════════════════════════════════════════════════════════════════════════╣
  20. echo  ║ Do you want to continue (and create the new screen file) ?                 ║
  21. echo  ║                                                                            ║
  22. echo  ║    YES continue                                                            ║
  23. echo  ║     NO don't continue                                                      ║
  24. echo  ╚════════════════════════════════════════════════════════════════════════════╝
  25. rem
  26. getmouse 5 19 26 20 YyNn 5 19
  27. rem ---- letter entry
  28. if errorlevel 203 goto end
  29. if errorlevel 201 goto begin
  30. rem ---- mouse entry
  31. if errorlevel 120 goto end
  32. rem
  33. :begin
  34. cls
  35. echo  ╔════════════════════════════════════════════════════════════╤═══════╤═══════╗
  36. echo  ║     GAMES DISK   (C) SPETER SOFTWARE             requires: │  EGA  │ Mouse ║
  37. echo  ╠══════════════════════╤═════════════════════════════════════╪═══════╪═══════╣
  38. echo  ║ A   Conquest         │  Map based war simulation game      │  yes  │  yes  ║
  39. echo  ║ B   Poker Square     │  2 dimensional poker                │  yes  │  no * ║
  40. echo  ║ C   Squasher         │  The monsters are after you...      │  yes  │  no   ║
  41. echo  ║ D   Aliens           │  Stop the aliens landing...         │  no   │  no   ║
  42. echo  ║ E   Walking Line     │  Multi-coloured walking line.       │  yes  │  no   ║
  43. echo  ║ F   2 Walking lines  │  Two walking lines                  │  yes  │  no   ║
  44. echo  ║ G   Hypocyloids      │  Spyrograph patterns                │  yes  │  no   ║
  45. echo  ║                      │                                     │       │       ║
  46. echo  ║ X   Return to DOS    │                                     │    optional * ║
  47. echo  ╚══════════════════════╧═════════════════════════════════════╧═══════╧═══════╝
  48. copyrect 0 0 0 24 79 games.scr
  49. rem
  50. :end
  51. cls
  52.